home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / pc / macf / mger.dir / 00255_tabletiles.ls < prev    next >
Encoding:
Text File  |  1995-10-10  |  395 b   |  26 lines

  1. on mouseDown
  2.   global gSpeed
  3.   if the clickOn < 21 then
  4.     exit
  5.   end if
  6.   if the controlDown then
  7.     exit
  8.   end if
  9.   set yu to the clickOn - 20
  10.   initsel()
  11.   setAt(selected, yu, 1)
  12.   setbar()
  13.   if the doubleClick then
  14.     repeat with x = 21 to 44
  15.       if (yu + 20) = x then
  16.         set gSpeed to 1
  17.         playmovn4Q(yu)
  18.         exit
  19.       end if
  20.     end repeat
  21.   end if
  22. end
  23.  
  24. on mouseUp
  25. end
  26.